home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_EtherAddrToString.c,v < prev    next >
Text File  |  1991-10-22  |  2KB  |  117 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     90.09.11.14.43.43;  author kupfer;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.11.21.09.10.07;  author mendel;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.22.14.52.56;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Formed from net.c of src/lib/old/net.c.
  27. @
  28.  
  29.  
  30. 1.2
  31. log
  32. @Lint.
  33. @
  34. text
  35. @/* 
  36.  * Net_EtherAddrToString.c --
  37.  *
  38.  *    Convert an ethernet address to a string.
  39.  *
  40.  * Copyright 1987 Regents of the University of California
  41.  * All rights reserved.
  42.  * Permission to use, copy, modify, and distribute this
  43.  * software and its documentation for any purpose and without
  44.  * fee is hereby granted, provided that the above copyright
  45.  * notice appear in all copies.  The University of California
  46.  * makes no representations about the suitability of this
  47.  * software for any purpose.  It is provided "as is" without
  48.  * express or implied warranty.
  49.  */
  50.  
  51. #ifndef lint
  52. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_EtherAddrToString.c,v 1.1 88/11/21 09:10:07 mendel Exp Locker: kupfer $ SPRITE (Berkeley)";
  53. #endif not lint
  54.  
  55.  
  56. #include "sprite.h"
  57. #include <stdio.h>
  58. #include "net.h"
  59.  
  60. /*
  61.  *----------------------------------------------------------------------
  62.  *
  63.  * Net_EtherAddrToString --
  64.  *
  65.  *    Convert Ethernet address to printable representation.
  66.  *
  67.  * Results:
  68.  *    Address of the string buffer.
  69.  *
  70.  * Side effects:
  71.  *    The buffer is overwritten.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76. char *
  77. Net_EtherAddrToString(etherAddrPtr, buffer)
  78.     register Net_EtherAddress *etherAddrPtr;
  79.     char buffer[18];
  80. {
  81.  
  82.     sprintf(buffer, "%02x:%02x:%02x:%02x:%02x:%02x",
  83.     NET_ETHER_ADDR_BYTE1(*etherAddrPtr) & 0xff, 
  84.     NET_ETHER_ADDR_BYTE2(*etherAddrPtr) & 0xff, 
  85.     NET_ETHER_ADDR_BYTE3(*etherAddrPtr) & 0xff, 
  86.     NET_ETHER_ADDR_BYTE4(*etherAddrPtr) & 0xff, 
  87.     NET_ETHER_ADDR_BYTE5(*etherAddrPtr) & 0xff, 
  88.     NET_ETHER_ADDR_BYTE6(*etherAddrPtr) & 0xff
  89.     );
  90.     return(buffer);
  91. }
  92.  
  93. @
  94.  
  95.  
  96. 1.2.1.1
  97. log
  98. @Initial branch for Sprite server.
  99. @
  100. text
  101. @d18 1
  102. a18 1
  103. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_EtherAddrToString.c,v 1.2 90/09/11 14:43:43 kupfer Exp $ SPRITE (Berkeley)";
  104. @
  105.  
  106.  
  107. 1.1
  108. log
  109. @Initial revision
  110. @
  111. text
  112. @d18 1
  113. a18 1
  114. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE (Berkeley)";
  115. d23 1
  116. @
  117.